home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Die Ultimative Software-P…i Collection 1996 & 1997
/
Die Ultimative Software-Pakete CD-ROM fur Atari Collection 1996 & 1997.iso
/
g
/
gnu_c
/
crssrc16.zoo
/
src
/
testtab.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1991-09-27
|
409 b
|
23 lines
#include <curses.h>
main()
{
initscr();
clear();
move(9,0);
addstr("123456781234567812345678123456781234567812345678");
move(10,0);
addch('\t'); addch('8'); addch('\t'); addch('8'); addch('\t'); addch('8');
addch('\t'); addch('8');
move(15,0);
addstr("\t8\t8\t8\t8");
move(17,0); addstr("hit return to finish -->");
refresh();
getch();
endwin();
}